PDF Plugin for Xojo

Page.Ellipse Method (console safe)

Appends ellipse to the current path.

Ellipse(
   x as Single,
   y as Single,
   x_radius as Single,
   y_radius as Single)

Parameters

x
The x coordinate where to place the ellipse
y
The y coordinate where to place the ellipse (Remember in PDF then y starts from bottom)
x_radius
The radius of the ellipse in x direction
y_radius
The radius of the ellipse in y direction

Remarks

GraphicsMode should be in the mode PAGE_DESCRIPTION or PATH_OBJECT when you call this method.

After calling this method then the GraphicsMode will be PATH_OBJECT.

See Also

Page Class